Skip to content
  • SQLite select and update statements

    Unsolved General and Desktop sqlite datebase sqlite queries
    6
    0 Votes
    6 Posts
    2k Views
    mrjjM
    @Danielpopo Hi super. What i meant was that sometimes integers do not convert to strings as expected with + int number=888; QString a="a"; QString b="b"; QString result=a+number+b; qDebug() <<"-------" << result; expected a888b got axb so i was not sure if all was strings in your statement. Since it work, you didnt have such case :)